Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added rca support #148

Merged
merged 14 commits into from
Feb 14, 2023
Merged

Added rca support #148

merged 14 commits into from
Feb 14, 2023

Conversation

danielRicaud
Copy link
Contributor

…-link-service-aws-2

@danielRicaud danielRicaud requested a review from a team as a code owner February 13, 2023 15:48
@danielRicaud danielRicaud self-assigned this Feb 13, 2023
Copy link
Member

@dmihalcik-virtru dmihalcik-virtru left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks good just remove the added files

package.json Outdated
@@ -0,0 +1,5 @@
{
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Delete these stray package and package-lock files from the project root

@@ -33,7 +33,7 @@ export abstract class DecoratedReadableStream {
upsertResponse?: UpsertResponse;

constructor(byteLimit: number, underlyingSource: UnderlyingSource) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we don't allow byteLimit to be set anymore should we go through and remove it entirely?

@github-actions
Copy link

If these changes look good, signoff on them with:

git pull && git commit --amend --signoff && git push --force-with-lease origin

If they aren't any good, please remove them with:

git pull && git reset --hard HEAD~1 && git push --force-with-lease origin

Signed-off-by: Daniel Ricaud <dricaud@virtru.com>
@danielRicaud danielRicaud force-pushed the feature/rca-link-service-aws-2 branch from 7c86681 to f213c4e Compare February 14, 2023 17:30
@sonarqubecloud
Copy link

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

constructor(byteLimit: number, underlyingSource: UnderlyingSource) {
this.stream = new ReadableStream(underlyingSource, { highWaterMark: byteLimit });
constructor(underlyingSource: UnderlyingSource) {
this.stream = new ReadableStream(underlyingSource, { highWaterMark: 1 });
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IIUC this will always immediately write whatever to the underlying stream. Which makes sense, as this is just supposed to be a proxy, not a buffer.

@danielRicaud danielRicaud merged commit 5075f18 into main Feb 14, 2023
@danielRicaud danielRicaud deleted the feature/rca-link-service-aws-2 branch February 14, 2023 18:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants